Spring Boot Kotlin API
Toggle table of contents
4.0.0-SNAPSHOT
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
Spring Boot Kotlin API
Spring Boot Kotlin API
/
org.springframework.boot.docs.testing.springbootapplications.jsontests
Package-level
declarations
Types
Types
My
Json
Assert
JTests
Link copied to clipboard
@
JsonTest
class
MyJsonAssertJTests
(
@
Autowired
val
json
:
JacksonTester
<
SomeObject
>
)
My
Json
Tests
Link copied to clipboard
@
JsonTest
class
MyJsonTests
(
@
Autowired
val
json
:
JacksonTester
<
VehicleDetails
>
)
Some
Object
Link copied to clipboard
class
SomeObject
(
value
:
Float
)
Vehicle
Details
Link copied to clipboard
data
class
VehicleDetails
(
val
make
:
String
,
val
model
:
String
)